home *** CD-ROM | disk | FTP | other *** search
/ PCGUIA 127 / PC Guia 127.iso / Software / Produtividade / OpenOffice.org 2.0.1 / openofficeorg4.cab / NEWS.txt < prev    next >
Text File  |  2005-11-19  |  14KB  |  358 lines

  1. What's New in IDLE 1.0.3?
  2. =========================
  3.  
  4. *Release date: 13-May-2004*
  5.  
  6. - Keybindings with the Shift modifier now work correctly.  So do bindings which
  7.   use the Space key.  Limit unmodified user keybindings to the function keys.
  8.   Python Bug 775353, IDLEfork Bugs 755647, 761557
  9.  
  10. What's New in IDLE 1.0.2?
  11. =========================
  12.  
  13. *Release date: 05-Dec-2003*
  14.  
  15. - After an exception, run.py was not setting the exception vector. Noam
  16.   Raphael suggested correcting this so pdb's postmortem pm() would work. 
  17.   IDLEfork Patch 844675
  18.  
  19. - IDLE now does not fail to save the file anymore if the Tk buffer is not a
  20.   Unicode string, yet eol_convention is.  Python Bugs 774680, 788378
  21.  
  22. - IDLE will use the Python html docs on the system, if found
  23.  
  24. What's New in IDLE 1.0.1?
  25. =========================
  26.  
  27. *Release date: 23-Sep-2003*
  28.  
  29. - IDLE didn't start correctly when Python was installed in "Program Files" on
  30.   W2K and XP.  Python Bugs 780451, 784183
  31.  
  32. - config-main.def documentation incorrectly referred to idle- instead of 
  33.   config-  filenames.  SF 782759  Also added note about .idlerc location.
  34.  
  35. What's New in IDLE 1.0?
  36. =======================
  37.  
  38. *Release date: 29-Jul-2003*
  39.  
  40. - Added a banner to the shell discussimg warnings possibly raised by personal
  41.   firewall software.  Added same comment to README.txt.
  42.  
  43.  
  44. What's New in IDLE 1.0 release candidate 2?
  45. ===========================================
  46.  
  47. *Release date: 24-Jul-2003*
  48.  
  49. - Calltip error when docstring was None  Python Bug 775541
  50.  
  51.  
  52. What's New in IDLE 1.0 release candidate 1?
  53. ===========================================
  54.  
  55. *Release date: 18-Jul-2003*
  56.  
  57. - Updated extend.txt, help.txt, and config-extensions.def to correctly
  58.   reflect the current status of the configuration system.  Python Bug 768469
  59.  
  60. - Fixed: Call Tip Trimming May Loop Forever. Python Patch 769142 (Daniels)
  61.  
  62. - Replaced apply(f, args, kwds) with f(*args, **kwargs) to improve performance
  63.   Python Patch 768187
  64.  
  65. - Break or continue statements outside a loop were causing IDLE crash
  66.   Python Bug 767794
  67.  
  68. - Convert Unicode strings from readline to IOBinding.encoding.  Also set
  69.   sys.std{in|out|err}.encoding, for both the local and the subprocess case.
  70.   SF IDLEfork patch 682347.
  71.  
  72.  
  73. What's New in IDLE 1.0b2?
  74. =========================
  75.  
  76. *Release date: 29-Jun-2003*
  77.  
  78. - Extend AboutDialog.ViewFile() to support file encodings.  Make the CREDITS
  79.   file Latin-1.
  80.  
  81. - Updated the About dialog to reflect re-integration into Python.  Provide
  82.   buttons to display Python's NEWS, License, and Credits, plus additional
  83.   buttons for IDLE's README and NEWS.
  84.  
  85. - TextViewer() now has a third parameter which allows inserting text into the
  86.   viewer instead of reading from a file.
  87.  
  88. - (Created the .../Lib/idlelib directory in the Python CVS, which is a clone of
  89.   IDLEfork modified to install in the Python environment.  The code in the
  90.   interrupt module has been moved to thread.interrupt_main(). )
  91.  
  92. - Printing the Shell window was failing if it was not saved first SF 748975
  93.  
  94. - When using the Search in Files dialog, if the user had a selection
  95.   highlighted in his Editor window, insert it into the dialog search field.
  96.  
  97. - The Python Shell entry was disappearing from the Windows menu.
  98.  
  99. - Update the Windows file list when a file name change occurs
  100.  
  101. - Change to File / Open Module: always pop up the dialog, using the current
  102.   selection as the default value.  This is easier to use habitually.
  103.  
  104. - Avoided a problem with starting the subprocess when 'localhost' doesn't
  105.   resolve to the user's loopback interface.  SF 747772
  106.  
  107. - Fixed an issue with highlighted errors never de-colorizing.  SF 747677.  Also
  108.   improved notification of Tabnanny Token Error.
  109.  
  110. - File / New will by default save in the directory of the Edit window from
  111.   which it was initiated.  SF 748973 Guido van Rossum patch.
  112.  
  113.  
  114. What's New in IDLEfork 0.9b1?
  115. =============================
  116.  
  117. *Release date: 02-Jun-2003*
  118.  
  119. - The current working directory of the execution environment (and shell
  120.   following completion of execution) is now that of the module being run. 
  121.  
  122. - Added the delete-exitfunc option to config-main.def.  (This option is not
  123.   included in the Options dialog.)  Setting this to True (the default) will
  124.   cause IDLE to not run sys.exitfunc/atexit when the subprocess exits.
  125.  
  126. - IDLE now preserves the line ending codes when editing a file produced on
  127.   a different platform. SF 661759,  SF 538584
  128.  
  129. - Reduced default editor font size to 10 point and increased window height
  130.   to provide a better initial impression on Windows.
  131.  
  132. - Options / Fonts/Tabs / Set Base Editor Font: List box was not highlighting
  133.   the default font when first installed on Windows.  SF 661676
  134.  
  135. - Added Autosave feature: when user runs code from edit window, if the file
  136.   has been modified IDLE will silently save it if Autosave is enabled.  The
  137.   option is set in the Options dialog, and the default is to prompt the
  138.   user to save the file.   SF 661318 Bruce Sherwood patch.
  139.  
  140. - Improved the RESTART annotation in the shell window when the user restarts
  141.   the shell while it is generating output.  Also improved annotation when user
  142.   repeatedly hammers the Ctrl-F6 restart.
  143.  
  144. - Allow IDLE to run when not installed and cwd is not the IDLE directory
  145.   SF Patch 686254 "Run IDLEfork from any directory without set-up" - Raphael
  146.  
  147. - When a module is run from an EditorWindow: if its directory is not in
  148.   sys.path, prepend it.  This allows the module to import other modules in
  149.   the same directory.  Do the same for a script run from the command line.
  150.  
  151. - Correctly restart the subprocess if it is running user code and the user
  152.   attempts to run some other module or restarts the shell.  Do the same if
  153.   the link is broken and it is possible to restart the subprocess and re-
  154.   connect to the GUI.   SF RFE 661321.
  155.  
  156. - Improved exception reporting when running commands or scripts from the
  157.   command line.
  158.  
  159. - Added a -n command line switch to start IDLE without the subprocess.
  160.   Removed the Shell menu when running in that mode.  Updated help messages.
  161.  
  162. - Added a comment to the shell startup header to indicate when IDLE is not
  163.   using the subprocess.
  164.  
  165. - Restore the ability to run without the subprocess.  This can be important for
  166.   some platforms or configurations.  (Running without the subprocess allows the
  167.   debugger to trace through parts of IDLE itself, which may or may not be
  168.   desirable, depending on your point of view.  In addition, the traditional
  169.   reload/import tricks must be use if user source code is changed.)  This is
  170.   helpful for developing IDLE using IDLE, because one instance can be used to
  171.   edit the code and a separate instance run to test changes.  (Multiple
  172.   concurrent IDLE instances with subprocesses is a future feature)
  173.  
  174. - Improve the error message a user gets when saving a file with non-ASCII
  175.   characters and no source encoding is specified.  Done by adding a dialog
  176.   'EncodingMessage', which contains the line to add in a fixed-font entry
  177.   widget, and which has a button to add that line to the file automatically.
  178.   Also, add a configuration option 'EditorWindow/encoding', which has three
  179.   possible values: none, utf-8, and locale. None is the default: IDLE will show
  180.   this dialog when non-ASCII characters are encountered. utf-8 means that files
  181.   with non-ASCII characters are saved as utf-8-with-bom. locale means that
  182.   files are saved in the locale's encoding; the dialog is only displayed if the
  183.   source contains characters outside the locale's charset.  SF 710733 - Loewis
  184.  
  185. - Improved I/O response by tweaking the wait parameter in various
  186.   calls to signal.signal().
  187.  
  188. - Implemented a threaded subprocess which allows interrupting a pass 
  189.   loop in user code using the 'interrupt' extension.  User code runs
  190.   in MainThread, while the RPCServer is handled by SockThread.  This is
  191.   necessary because Windows doesn't support signals.
  192.  
  193. - Implemented the 'interrupt' extension module, which allows a subthread
  194.   to raise a KeyboardInterrupt in the main thread.
  195.  
  196. - Attempting to save the shell raised an error related to saving
  197.   breakpoints, which are not implemented in the shell
  198.  
  199. - Provide a correct message when 'exit' or 'quit' are entered at the
  200.   IDLE command prompt  SF 695861
  201.  
  202. - Eliminate extra blank line in shell output caused by not flushing
  203.   stdout when user code ends with an unterminated print. SF 695861
  204.  
  205. - Moved responsibility for exception formatting (i.e. pruning IDLE internal
  206.   calls) out of rpc.py into the client and server.
  207.  
  208. - Exit IDLE cleanly even when doing subprocess I/O
  209.  
  210. - Handle subprocess interrupt with an RPC message.  
  211.  
  212. - Restart the subprocess if it terminates itself. (VPython programs do that)
  213.  
  214. - Support subclassing of exceptions, including in the shell, by moving the 
  215.   exception formatting to the subprocess.
  216.  
  217.  
  218.  
  219. What's New in IDLEfork 0.9 Alpha 2?
  220. ===================================
  221.  
  222. *Release date: 27-Jan-2003*
  223.  
  224. - Updated INSTALL.txt to claify use of the python2 rpm.
  225.  
  226. - Improved formatting in IDLE Help.
  227.  
  228. - Run menu: Replace "Run Script" with "Run Module".
  229.  
  230. - Code encountering an unhandled exception under the debugger now shows
  231.   the correct traceback, with IDLE internal levels pruned out.
  232.  
  233. - If an exception occurs entirely in IDLE, don't prune the IDLE internal
  234.   modules from the traceback displayed.
  235.  
  236. - Class Browser and Path Browser now use Alt-Key-2 for vertical zoom.
  237.  
  238. - IDLE icons will now install correctly even when setup.py is run from the
  239.   build directory
  240.  
  241. - Class Browser now compatible with Python2.3 version of pyclbr.py
  242.  
  243. - Left cursor move in presence of selected text now moves from left end
  244.   of the selection.
  245.  
  246. - Add Meta keybindings to "IDLE Classic Windows" to handle reversed
  247.   Alt/Meta on some Linux distros.
  248.  
  249. - Change default: IDLE now starts with Python Shell.
  250.  
  251. - Removed the File Path from the Additional Help Sources scrolled list.
  252.  
  253. - Add capability to access Additional Help Sources on the web if the 
  254.   Help File Path begins with //http or www.  (Otherwise local path is
  255.   validated, as before.)
  256.  
  257. - Additional Help Sources were not being posted on the Help menu in the
  258.   order entered.  Implement sorting the list by [HelpFiles] 'option' 
  259.   number.
  260.  
  261. - Add Browse button to New Help Source dialog.  Arrange to start in 
  262.   Python/Doc if platform is Windows, otherwise start in current directory.
  263.  
  264. - Put the Additional Help Sources directly on the Help menu instead of in
  265.   an Extra Help cascade menu.  Rearrange the Help menu so the Additional
  266.   Help Sources come last.  Update help.txt appropriately.
  267.  
  268. - Fix Tk root pop-ups in configSectionNameDialog.py  and configDialog.py
  269.  
  270. - Uniform capitalization in General tab of ConfigDialog, update the doc string.
  271.  
  272. - Fix bug in ConfigDialog where SaveAllChangedConfig() was unexpectedly
  273.   deleting Additional Help Sources from the user's config file.
  274.  
  275. - Make configHelpSourceEdit OK button the default and bind <Return>
  276.  
  277. - Fix Tk root pop-ups in configHelpSourceEdit: error dialogs not attached
  278.   to parents.
  279.  
  280. - Use os.startfile() to open both Additional Help and Python Help on the
  281.   Windows platform.  The application associated with the file type will act as
  282.   the viewer.  Windows help files (.chm) are now supported via the
  283.   Settings/General/Additional Help facility.
  284.  
  285. - If Python Help files are installed locally on Linux, use them instead of
  286.   accessing python.org.
  287.  
  288. - Make the methods for finding the Python help docs more robust, and make
  289.   them work in the installed configuration, also.  
  290.  
  291. - On the Save Before Run dialog, make the OK button the default.  One
  292.   less mouse action!
  293.  
  294. - Add a method: EditorWindow.get_geometry() for future use in implementing
  295.   window location persistence.
  296.  
  297. - Removed the "Help/Advice" menu entry.  Thanks, David!  We'll remember!
  298.  
  299. - Change the "Classic Windows" theme's paste key to be <ctrl-v>.
  300.  
  301. - Rearrange the Shell menu to put Stack Viewer entries adjacent.
  302.  
  303. - Add the ability to restart the subprocess interpreter from the shell window;
  304.   add an associated menu entry "Shell/Restart" with binding Control-F6.  Update
  305.   IDLE help.
  306.  
  307. - Upon a restart, annotate the shell window with a "restart boundary".  Add a
  308.   shell window menu "Shell/View Restart" with binding F6 to jump to the most
  309.   recent restart boundary.
  310.  
  311. - Add Shell menu to Python Shell; change "Settings" to "Options".
  312.  
  313. - Remove incorrect comment in setup.py: IDLEfork is now installed as a package.
  314.  
  315. - Add INSTALL.txt, HISTORY.txt, NEWS.txt to installed configuration.
  316.  
  317. - In installer text, fix reference to Visual Python, should be VPython.
  318.   Properly credit David Scherer.
  319.  
  320. - Modified idle, idle.py, idle.pyw to improve exception handling.
  321.  
  322.  
  323. What's New in IDLEfork 0.9 Alpha 1?
  324. ===================================
  325.  
  326. *Release date: 31-Dec-2002* 
  327.  
  328. - First release of major new functionality.  For further details refer to
  329.   Idle-dev and/or the Sourceforge CVS.
  330.  
  331. - Adapted to the Mac platform.
  332.  
  333. - Overhauled the IDLE startup options and revised the idle -h help message,
  334.   which provides details of command line usage.
  335.  
  336. - Multiple bug fixes and usability enhancements.
  337.  
  338. - Introduced the new RPC implementation, which includes a debugger.  The output
  339.   of user code is to the shell, and the shell may be used to inspect the
  340.   environment after the run has finished.  (In version 0.8.1 the shell
  341.   environment was separate from the environment of the user code.)
  342.  
  343. - Introduced the configuration GUI and a new About dialog.
  344.  
  345. - Removed David Scherer's Remote Procedure Call code and replaced with Guido
  346.   van Rossum's.  GvR code has support for the IDLE debugger and uses the shell
  347.   to inspect the environment of code Run from an Edit window.  Files removed:
  348.   ExecBinding.py, loader.py, protocol.py, Remote.py, spawn.py
  349.  
  350. --------------------------------------------------------------------
  351. Refer to HISTORY.txt for additional information on earlier releases.
  352. --------------------------------------------------------------------
  353.  
  354.  
  355.  
  356.  
  357.  
  358.